From: Eli Zaretskii Date: Fri, 6 Jul 2007 16:14:39 +0000 (+0000) Subject: Document how to get back the old binding of SPC in file prompts. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~421^2~18072 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=2bdf908c28f4802b5df053868633401cc5f2be83;p=emacs.git Document how to get back the old binding of SPC in file prompts. --- diff --git a/etc/NEWS.22 b/etc/NEWS.22 index d210c32700b..6ce691b0f41 100644 --- a/etc/NEWS.22 +++ b/etc/NEWS.22 @@ -261,6 +261,14 @@ need to quote the space with a C-q. The underlying changes in the keymaps that are active in the minibuffer are described below under "New keymaps for typing file names". +If you want the old behavior back, put these two key bindings to your +~/.emacs init file: + + (define-key minibuffer-local-filename-completion-map + " " 'minibuffer-complete-word) + (define-key minibuffer-local-must-match-filename-map + " " 'minibuffer-complete-word) + ** The completion commands TAB, SPC and ? in the minibuffer apply only to the text before point. If there is text in the buffer after point, it remains unchanged.